home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / modelers / linkedit / linkedit.lha / link-edit / LinkEdit / Link / link_sys.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-03-13  |  222 b   |  15 lines

  1.  
  2. #include <stdio.h>
  3. #include <sys/types.h>
  4. #include <sys/time.h>
  5.  
  6. LinkPause(microsec)
  7. long microsec;
  8. {
  9.   struct timeval timeout;
  10.  
  11.   timeout.tv_sec = 0;
  12.   timeout.tv_usec =  microsec;
  13.   select(0,NULL,NULL,NULL,&timeout);
  14. }
  15.